Function: profiler-calltree-count<

profiler-calltree-count< is a byte-compiled function defined in profiler.el.gz.

Signature

(profiler-calltree-count< A B)

Source Code

;; Defined in /usr/src/emacs/lisp/profiler.el.gz
(defun profiler-calltree-count< (a b)
  (cond ((eq (profiler-calltree-entry a) t) t)
	((eq (profiler-calltree-entry b) t) nil)
	(t (< (profiler-calltree-count a)
	      (profiler-calltree-count b)))))